home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Concept 6
/
CD Concept 06.iso
/
mac
/
UTILITAIRE
/
RLaB
/
rlib
/
cosh.r
< prev
next >
Wrap
Text File
|
1994-02-21
|
308b
|
15 lines
//-------------------------------------------------------------------//
// Syntax: cosh ( X )
// Description:
// Cosh is the hyperbolic cosine of the element(s) of X.
//-------------------------------------------------------------------//
cosh = function ( x )
{
return (exp (x) + exp (-x))/2;
};